home *** CD-ROM | disk | FTP | other *** search
/ Workplace Effectiveness: Dealing with Change / Workplace Effectiveness: Dealing with Change.iso / pc / Tools.Dxr / Internal_41_PRINT, Write file handlers.ls < prev    next >
Encoding:
Text File  |  1998-05-04  |  4.3 KB  |  76 lines

  1. on getAffirmations
  2.   set vTempText to EMPTY
  3.   set the text of member "affirmation" to EMPTY
  4.   put "The following text was entered into your Personal Affirmation statement:" & RETURN & RETURN after vTempText
  5.   put the text of member "self statement" & RETURN after vTempText
  6.   set the text of member "affirmation" to vTempText
  7. end
  8.  
  9. on getResponses
  10.   global gCritterWord
  11.   set vTempText to EMPTY
  12.   set the text of member "responses" to EMPTY
  13.   put "Non-productive Responses to Change reflection questions and your answers:" & RETURN & RETURN after vTempText
  14.   put "This is the animal you selected in your chair at the conference table:" & RETURN & gCritterWord & RETURN & RETURN after vTempText
  15.   put "1. What have you learned about your own reaction to change?" & RETURN & the text of member "memo 1" & RETURN & RETURN after vTempText
  16.   put "2. What might make change easier for you?" & RETURN & the text of member "memo 2" & RETURN & RETURN after vTempText
  17.   put "3. What are some strategies that you might suggest to other employees that might help them during times of rapid change?" & RETURN & the text of member "memo 3" & RETURN & RETURN after vTempText
  18.   set the text of member "responses" to vTempText
  19. end
  20.  
  21. on getChefData
  22.   set vTempText to EMPTY
  23.   set the text of member "chef answers" to EMPTY
  24.   put "A Change in the Workplace: Eclair de Lune reflection questions and your answers." & RETURN & RETURN after vTempText
  25.   put "What do you believe each of the pastry chefs will say in the meeting? What would you say?" & RETURN & the text of member "chef field A" & RETURN & RETURN after vTempText
  26.   put "1. In your opinion, as a strategy for implementing change, is it better to try to reduce resistance or to increase pressure to accept change?" & RETURN & the text of member "chef field 1" & RETURN & RETURN after vTempText
  27.   put "2. What factors determine the effectiveness of change?" & RETURN & the text of member "chef field 2" & RETURN & RETURN after vTempText
  28.   put "3. What do you believe normally happens to resistance when affected employees participate in planning for change?" & RETURN & the text of member "chef field 3" & RETURN & RETURN after vTempText
  29.   put "4. When resistance is caused by negative attitudes and emotions, how should a group leader respond?" & RETURN & the text of member "chef field 4" & RETURN & RETURN after vTempText
  30.   set the text of member "chef answers" to vTempText
  31. end
  32.  
  33. on getGraphPlot
  34.   global gGraphScores
  35.   set vTempText to EMPTY
  36.   set the text of member "plot results" to EMPTY
  37.   set vPlotCats to ["Feeling Unsettled", "Denying", "Resisting", "Bargaining", "Depression", "Acceptance", "Letting Go", "Envisioning", "Committed to Action"]
  38.   put "Plotting Change" & RETURN & RETURN after vTempText
  39.   put "The change situation you entered for consideration is:" & RETURN & the text of member "situation" & RETURN & RETURN after vTempText
  40.   put "The graph points you selected for the stages of change are:" & RETURN & RETURN after vTempText
  41.   repeat with X = 1 to 9
  42.     put getAt(vPlotCats, X) & ":  " & string(getAt(gGraphScores, X)) & RETURN after vTempText
  43.   end repeat
  44.   set the text of member "plot results" to vTempText
  45. end
  46.  
  47. on getPaperData
  48.   set vTempText to EMPTY
  49.   set the text of member "toss results" to EMPTY
  50.   put "The Paper Toss" & RETURN & RETURN after vTempText
  51.   put "The negative feelings that you described are:" & RETURN & the text of member "paper negative" & RETURN & RETURN after vTempText
  52.   put "The positive feelings that you described are:" & RETURN & the text of member "paper positive" & RETURN & RETURN after vTempText
  53.   set the text of member "toss results" to vTempText
  54. end
  55.  
  56. on getAllPart2
  57.   global gAllPart_2
  58.   set partA to the text of member "affirmation"
  59.   set partB to the text of member "responses"
  60.   set partC to the text of member "chef answers"
  61.   set partD to the text of member "plot results"
  62.   set partE to the text of member "toss results"
  63.   set gAllPart_2 to "Answers from Part 2, Tools for Change:" & RETURN & "--------------------------------------------------" & RETURN & RETURN & partA & RETURN & partB & RETURN & partC & RETURN & partD & RETURN & partE
  64. end
  65.  
  66. on menuPrint
  67.   global gMasterData, gAllPart_2
  68.   if iAmActivated(gMasterData) then
  69.     getAllPart2()
  70.     set the text of member "PrintAllPart2" to gAllPart_2
  71.     print(the text of member "PrintAllPart2")
  72.   else
  73.     alert("Printing is unavailable until an activity is completed.")
  74.   end if
  75. end
  76.